Skip to main content

PUT Existing Channel

Overview


The table below provides key details about the PUT method for updating a channel.

Update Existing Channel
MethodPUT
URL or Endpoint/api/v1/projectId/channels
HeadersAuthorization
Content Typemultipart/form-data
ParametersprojectId
Request BodyPublicId, Title, Logo

The description of the URL parameter is as follows:

projectId URL Parameter
URL Parameter NameprojectId
MandatoryYes
Typestring
DescriptionUnique Id of the project.

Request Body

The description of the body parameters is as follows:

Parameter NameMandatoryTypeDescription
PubliIdYesstringPublic identifier of the channel
TitleYesstringTitle of the channel
LogoNostring($binary)URL of channel's logo

Response

{
"success": true,
"errors": [],
"messages": [],
"result": {
"publicId": "{channelId}",
"streamId": "{streamId}",
"name": "{streamName}",
"title": "{channelTitle}",
"logo": null,
"streamServer": "rtmp://{streamServerLink]",
"streamKey": "{streamKey}",
"playbackUrl": "",
"liveStatus": "Offline",
"healthStatus": "Unknown",
"inputSource": null
},
"resultInfo": null,
"statusCode": 200
}

Information about the fields that appear when you receive the response are displayed in the table below.

Field NameTypeDescription
successboolIf the response is successful it will return true. Otherwise will return false.
errorsarray[]Indicates if there was an error.
messagesarray[]Returns the response message from back-end.
resultarray[Object]Returns the response object.
publicIdstringReturns the public identifier of the channel
streamIdstringReturns the unique identifier of the live job that handles the live streaming
namestringReturns a guid that is randomly generated
titlestringReturns the title of the channel
logostring($binary)Returns the URL for the channel's logo
streamServerstringReturns the RTMP URL of the streaming server where live video streams should be directed for ingestion
streamKeystringReturns a unique identifier which is used to authenticate and identify a specific live stream on the streaming platform
playbackUrlstringReturns a m3u8 file URL where the livestream can be accessed for playback
liveStatusstringIndicate the live status of the channel
healthStatusstringIndicate the health status of the channel
inputSourcestringReturns the location from which the live stream is being streamed
resultInfostringReturns extra information about the result.
statusCodeinteger($int32)Returns the HTTP Status Code.

If the action is successful, the service sends back an HTTP 200 or 201 response.

Errors

For information about the errors that are common to all actions, see Common Errors:

  • HTTP Status Code 400: Bad Request

  • HTTP Status Code 401: Unauthorized

  • HTTP Status Code 403: Forbidden

  • HTTP Status Code 404: Result Not Found

  • HTTP Status Code 500: Internal Server Error

  • HTTP Status Code 503: Backend Fetch Failed